Contents
Syntax
The syntax for
>=(params)
@>=(params)
Description
Note: It is typically faster to use exprtk for relational operators, plus the syntax is nicer.
f++ example
Examples of
- for(int i=10; >=(i, 0); i-=1)
- console("i: ", i)
- int a=2, b=1, c=0
- console(>=(a, b, c))
- console(>=(c, a, b))
n++ example
Examples of
- @for(int i=10; >=(i, 0); i-=1)
- @console("i: ", i)
- @int a=2, b=1, c=0
- @console(@>=(a, b, c))
- @console(@>=(c, a, b))